home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 May / SGI IRIX 6.5 Applications 2004 May.iso / dist / java3d.idb / usr / demos / java / j3d / programs / examples / TextureTest / MultiTextureTest.java.z / MultiTextureTest.java
Encoding:
Java Source  |  2003-08-08  |  9.4 KB  |  314 lines

  1. /*
  2.  *    @(#)MultiTextureTest.java 1.13 02/10/21 13:57:36
  3.  *
  4.  * Copyright (c) 1996-2002 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  *
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  *
  13.  * - Redistribution in binary form must reproduce the above copyright
  14.  *   notice, this list of conditions and the following disclaimer in
  15.  *   the documentation and/or other materials provided with the
  16.  *   distribution.
  17.  *
  18.  * Neither the name of Sun Microsystems, Inc. or the names of
  19.  * contributors may be used to endorse or promote products derived
  20.  * from this software without specific prior written permission.
  21.  *
  22.  * This software is provided "AS IS," without a warranty of any
  23.  * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
  24.  * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
  25.  * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
  26.  * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES
  27.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  28.  * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
  29.  * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
  30.  * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
  31.  * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
  32.  * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE,
  33.  * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  34.  *
  35.  * You acknowledge that Software is not designed,licensed or intended
  36.  * for use in the design, construction, operation or maintenance of
  37.  * any nuclear facility.
  38.  */
  39.  
  40. import com.sun.j3d.utils.image.TextureLoader;
  41. import com.sun.j3d.utils.geometry.Box;
  42. import com.sun.j3d.utils.behaviors.vp.*;
  43. import java.applet.Applet;
  44. import java.awt.*;
  45. import java.awt.event.*;
  46. import com.sun.j3d.utils.applet.MainFrame;
  47. import com.sun.j3d.utils.universe.*;
  48. import javax.media.j3d.*;
  49. import javax.vecmath.*;
  50. import java.awt.image.BufferedImage;
  51.  
  52. public class MultiTextureTest extends Applet implements ItemListener{
  53.  
  54.   Choice choice;
  55.   TextureUnitState textureUnitState[] = new TextureUnitState[2];
  56.   Texture stoneTex;
  57.   Texture skyTex;
  58.   Texture lightTex;
  59.  
  60.   private java.net.URL stoneImage = null;
  61.   private java.net.URL skyImage = null;
  62.  
  63.     private SimpleUniverse u = null;
  64.  
  65.   public Texture createLightMap(){
  66.  
  67.     int width = 128;
  68.     int height = 128;
  69.     BufferedImage bimage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
  70.     int [] rgbArray = new int[width * height];
  71.     int index, index2;
  72.     int rgbInc = 256 / (width / 2 - 20);
  73.     int rgbValue = 0;
  74.     int k = width/2 - 5;
  75.     int i, j, rgb;
  76.  
  77.     rgb = 0xff;
  78.     rgbValue = rgb | (rgb << 8) | (rgb << 16) | (rgb << 24);
  79.     for ( i = width / 2 - 1, j = 0; j < 10; j++, i--) {
  80.      rgbArray[i] = rgbValue;
  81.     }
  82.  
  83.     for (; i > 8; i--, rgb -= rgbInc) {
  84.      rgbValue = rgb | (rgb << 8) | (rgb << 16) | (rgb << 24);
  85.      rgbArray[i] = rgbValue;
  86.     }
  87.  
  88.     for (; i >= 0; i--) {
  89.      rgbArray[i] = rgbValue;
  90.     }
  91.     
  92.     for (i = 0; i < width/2; i++) {
  93.      rgbValue = rgbArray[i];
  94.      index = i;
  95.      index2 = (width - i - 1);
  96.      for (j = 0; j < height; j++) {
  97.           rgbArray[index] = rgbArray[index2] = rgbValue;
  98.           index += width;
  99.           index2 += width;
  100.      }
  101.     }
  102.         
  103.     bimage.setRGB(0, 0, width, height, rgbArray, 0, width);
  104.  
  105.     
  106.     ImageComponent2D grayImage = new ImageComponent2D(ImageComponent.FORMAT_RGB, bimage);
  107.  
  108.     lightTex = new Texture2D(Texture.BASE_LEVEL, Texture.RGB, width, height);
  109.     lightTex.setImage(0, grayImage);
  110.  
  111.     return lightTex;
  112.   }
  113.  
  114.  
  115.   public BranchGroup createSceneGraph() {
  116.     // Create the root of the branch graph
  117.     BranchGroup objRoot = new BranchGroup();
  118.  
  119.     // Create a Transformgroup to scale all objects so they
  120.     // appear in the scene.
  121.     TransformGroup objScale = new TransformGroup();
  122.     Transform3D t3d = new Transform3D();
  123.     t3d.setScale(0.4);
  124.     objScale.setTransform(t3d);
  125.     objRoot.addChild(objScale);
  126.     
  127.     TransformGroup objTrans = new TransformGroup();
  128.     //write-enable for behaviors
  129.     objTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
  130.     objTrans.setCapability( TransformGroup.ALLOW_TRANSFORM_READ );
  131.     objTrans.setCapability(TransformGroup.ENABLE_PICK_REPORTING);
  132.     objScale.addChild(objTrans);
  133.     
  134.     Appearance ap = new Appearance();
  135.     
  136.     // load textures
  137.     TextureAttributes texAttr1 = new TextureAttributes();
  138.     texAttr1.setTextureMode(TextureAttributes.DECAL);
  139.     TextureAttributes texAttr2 = new TextureAttributes();
  140.     texAttr2.setTextureMode(TextureAttributes.MODULATE);
  141.  
  142.     TextureLoader tex = new TextureLoader(stoneImage, new String("RGB"), this);
  143.     if (tex == null) 
  144.     return null;
  145.     stoneTex = tex.getTexture();
  146.  
  147.     tex = new TextureLoader(skyImage, new String("RGB"), this);
  148.     if (tex == null)
  149.     return null;
  150.     skyTex = tex.getTexture();
  151.  
  152.     lightTex = createLightMap();
  153.  
  154.  
  155.     textureUnitState[0] = new TextureUnitState(stoneTex, texAttr1, null);
  156.     textureUnitState[0].setCapability(TextureUnitState.ALLOW_STATE_WRITE);
  157.  
  158.     textureUnitState[1] = new TextureUnitState(lightTex, texAttr2, null);
  159.     textureUnitState[1].setCapability(TextureUnitState.ALLOW_STATE_WRITE);
  160.  
  161.     ap.setTextureUnitState(textureUnitState);
  162.  
  163.     //Create a Box
  164.     Box BoxObj = new Box(1.5f, 1.5f, 0.8f, Box.GENERATE_NORMALS |
  165.                 Box.GENERATE_TEXTURE_COORDS, ap, 2);
  166.     // add it to the scene graph.
  167.     objTrans.addChild(BoxObj);
  168.  
  169.     BoundingSphere bounds =
  170.       new BoundingSphere(new Point3d(0.0,0.0,0.0), 100.0);
  171.     
  172.     //Shine it with two lights.
  173.     Color3f lColor1 = new Color3f(0.7f, 0.7f, 0.7f);
  174.     Color3f lColor2 = new Color3f(0.2f, 0.2f, 0.1f);
  175.     Vector3f lDir1  = new Vector3f(-1.0f, -1.0f, -1.0f);
  176.     Vector3f lDir2  = new Vector3f(0.0f, 0.0f, -1.0f);
  177.     DirectionalLight lgt1 = new DirectionalLight(lColor1, lDir1);
  178.     DirectionalLight lgt2 = new DirectionalLight(lColor2, lDir2);
  179.     lgt1.setInfluencingBounds(bounds);
  180.     lgt2.setInfluencingBounds(bounds);
  181.     objScale.addChild(lgt1);
  182.     objScale.addChild(lgt2);
  183.    
  184.     // Let Java 3D perform optimizations on this scene graph.
  185.     objRoot.compile();
  186.  
  187.     return objRoot;
  188.   }
  189.  
  190.   public MultiTextureTest (){
  191.   }
  192.  
  193.   public MultiTextureTest(java.net.URL stoneURL, java.net.URL skyURL) {
  194.     stoneImage = stoneURL;
  195.     skyImage = skyURL;
  196.   }
  197.  
  198.   public void init() {
  199.     if (stoneImage == null) {
  200.       // the path to the image for an applet
  201.       try {
  202.     stoneImage = new java.net.URL(getCodeBase().toString() + 
  203.                       "../images/stone.jpg");
  204.       }
  205.       catch (java.net.MalformedURLException ex) {
  206.     System.out.println(ex.getMessage());
  207.     System.exit(1);
  208.       }
  209.     }
  210.  
  211.     if (skyImage == null) {
  212.       // the path to the image for an applet
  213.       try {
  214.     skyImage = new java.net.URL(getCodeBase().toString() +
  215.                     "../images/bg.jpg");
  216.       }
  217.       catch (java.net.MalformedURLException ex) {
  218.     System.out.println(ex.getMessage());
  219.     System.exit(1);
  220.       }
  221.     }
  222.  
  223.     setLayout(new BorderLayout());
  224.     GraphicsConfiguration config =
  225.        SimpleUniverse.getPreferredConfiguration();
  226.  
  227.     Canvas3D c = new Canvas3D(config);
  228.     add("Center", c);
  229.     
  230.     BranchGroup scene = createSceneGraph();
  231.     u = new SimpleUniverse(c);
  232.  
  233.     ViewingPlatform viewingPlatform = u.getViewingPlatform();
  234.     // This will move the ViewPlatform back a bit so the
  235.     // objects in the scene can be viewed.
  236.     viewingPlatform.setNominalViewingTransform();
  237.  
  238.     // add orbit behavior but disable translate
  239.     OrbitBehavior orbit =
  240.     new OrbitBehavior(c, OrbitBehavior.REVERSE_ALL |
  241.               OrbitBehavior.DISABLE_TRANSLATE);
  242.     BoundingSphere bounds =
  243.     new BoundingSphere(new Point3d(0.0, 0.0, 0.0), 100.0);
  244.     orbit.setSchedulingBounds(bounds);
  245.     viewingPlatform.setViewPlatformBehavior(orbit);
  246.  
  247.     u.addBranchGraph(scene);
  248.  
  249.     // create the gui
  250.     choice = new Choice();
  251.     choice.addItem("stone + light");
  252.     choice.addItem("stone");
  253.     choice.addItem("lightMap");
  254.     choice.addItem("sky");
  255.     choice.addItem("stone + sky");
  256.     choice.addItemListener(this);
  257.     add("North", choice);
  258.  
  259.   }
  260.  
  261.     public void destroy() {
  262.     // Cleanup reference to Java3D
  263.     textureUnitState = new TextureUnitState[2];
  264.     u.cleanup();
  265.     }
  266.   
  267.   public void itemStateChanged(ItemEvent e)
  268.   {
  269.     int index = choice.getSelectedIndex();
  270.  
  271.     switch (index) {
  272.     case 0 : /* stone + light */
  273.     textureUnitState[0].setTexture(stoneTex);
  274.     textureUnitState[1].setTexture(lightTex);
  275.     break;
  276.     case 1 : /* stone */
  277.     textureUnitState[0].setTexture(stoneTex);
  278.     textureUnitState[1].setTexture(null);
  279.     break;
  280.     case 2 : /* light */
  281.     textureUnitState[0].setTexture(null);
  282.     textureUnitState[1].setTexture(lightTex);
  283.     break;
  284.     case 3 : /* sky */
  285.     textureUnitState[0].setTexture(null);
  286.     textureUnitState[1].setTexture(skyTex);
  287.     break;
  288.     case 4 : /* stone + sky */
  289.     textureUnitState[0].setTexture(stoneTex);
  290.     textureUnitState[1].setTexture(skyTex);
  291.     break;
  292.     default:  /* both */
  293.     break;
  294.     }
  295.   }
  296.  
  297.   public static void main(String argv[])
  298.   {
  299.     java.net.URL stoneURL = null;
  300.     java.net.URL skyURL = null;
  301.     // the path to the image for an application
  302.     try {
  303.       stoneURL = new java.net.URL("file:../images/stone.jpg");
  304.       skyURL = new java.net.URL("file:../images/bg.jpg");
  305.     }
  306.     catch (java.net.MalformedURLException ex) {
  307.       System.out.println(ex.getMessage());
  308.       System.exit(1);
  309.     }
  310.     new MainFrame(new MultiTextureTest(stoneURL, skyURL), 750, 750);
  311.   }
  312. }
  313.  
  314.